home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / communic / pcmail / termcap / makefile.msc < prev    next >
Encoding:
Makefile  |  1994-06-05  |  557 b   |  31 lines

  1. # @(#) makefile.msc 2.1 90/01/22 13:57:00
  2.  
  3.  
  4.  
  5. CFLAGS  = -Ml
  6.  
  7. CC    = cl
  8.  
  9.  
  10.  
  11. FILES    = README buildall.bat console.c makefile.msc termcap.h tgetent.c \
  12.  
  13.     tgetflag.c tgetnum.c tgetstr.c tgoto.c tputs.c
  14.  
  15.  
  16.  
  17. OBJECTS = tgoto.obj tgetnum.obj tgetstr.obj tputs.obj tgetflag.obj \
  18.  
  19.     tgetent.obj console.obj
  20.  
  21.  
  22.  
  23. .SUFFIXES: .obj
  24.  
  25.  
  26.  
  27. .c.obj:
  28.  
  29.     $(CC) $(CFLAGS) -c $*.c
  30.  
  31.  
  32.  
  33. termcap.lib: $(OBJECTS)
  34.  
  35.     del $@
  36.  
  37.     lib $@ $(OBJECTS) ;
  38.  
  39.  
  40.  
  41. $(OBJECTS): termcap.h
  42.  
  43.  
  44.  
  45. cleanup clean:
  46.  
  47.     del $(OBJECTS)
  48.  
  49.  
  50.  
  51. clobber: clean
  52.  
  53.     del termcap.lib
  54.  
  55.  
  56.  
  57. shar:
  58.  
  59.     shar $(FILES)
  60.  
  61.